Tables [dbo].[NavigationWorkflowParameters]
Properties
PropertyValue
Row Count0
Created10:31:29 AM Tuesday, March 02, 2010
Last Modified11:40:04 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_NavigationWorkflowParameters: DocumentVersionKeyDocumentVersionKeyuniqueidentifier16
No
RemoveAfterDaysint4
No
NotifyContactKeyuniqueidentifier16
No
FirstWarningSentOndatetime8
Yes
SecondWarningSentOndatetime8
Yes
FirstNotificationSentOndatetime8
Yes
SecondNotificationSentOndatetime8
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_NavigationWorkflowParameters: DocumentVersionKeyPK_NavigationWorkflowParametersDocumentVersionKey
Yes
SQL Script
CREATE TABLE [dbo].[NavigationWorkflowParameters]
(
[DocumentVersionKey] [uniqueidentifier] NOT NULL,
[RemoveAfterDays] [int] NOT NULL,
[NotifyContactKey] [uniqueidentifier] NOT NULL,
[FirstWarningSentOn] [datetime] NULL,
[SecondWarningSentOn] [datetime] NULL,
[FirstNotificationSentOn] [datetime] NULL,
[SecondNotificationSentOn] [datetime] NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[NavigationWorkflowParameters] ADD CONSTRAINT [PK_NavigationWorkflowParameters] PRIMARY KEY CLUSTERED ([DocumentVersionKey]) ON [PRIMARY]
GO
Uses
Used By